home *** CD-ROM | disk | FTP | other *** search
/ Chip 1996 September / CHIP 1996 szeptember (CD07).zip / CHIP_CD07.ISO / povray30 / povmsdos.exe / POVMSDOS.ZIP / DOCSDEMO / HALO22.POV < prev    next >
Text File  |  1996-05-31  |  428b  |  26 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "halo2.inc"
  7.  
  8. sphere { 0, 1
  9.   pigment { color rgbt <1, 1, 1, 1> }
  10.   halo {
  11.     attenuating
  12.     spherical_mapping
  13.     linear
  14.     turbulence 1
  15.     color_map {
  16.       [ 0 color rgbt <1, 0, 0, 1> ]
  17.       [ 1 color rgbt <1, 0, 0, -1> ]
  18.     } 
  19.     samples 10
  20.     scale 0.75
  21.   }
  22.   hollow
  23.   scale <1.5, 0.75, 1>
  24. }
  25.  
  26.